home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gdevimgn.c < prev    next >
C/C++ Source or Header  |  1996-09-24  |  20KB  |  573 lines

  1. /* Copyright (C) 1992, 1993, 1994, 1996 by Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* ---------------------------------------------------------- */ 
  20. /* gdevimgn.c - version 1.4 */
  21. /* Imagen ImPRESS printer driver */
  22.  
  23. /* This driver uses the Impress bitmap operation to print the
  24.    page image. */
  25. /* -------------------------------------------------------- */ 
  26.  
  27. /* Written by Alan Millar (AMillar@bolis.sf-bay.org) August 4 1992.
  28.       Basic bitmap dump.  */
  29. /* Updated by Alan Millar Sept 21 1992.  Added resolution handling 
  30.       for 75, 150, and 300 dpi. */
  31. /* Updated by Alan Millar June 05 1993.  General cleanup for
  32.    beta test release. */
  33. /* Updated by Alan Millar June 21 1993.  v1.3.  Combined multipage
  34.    output into single imPress document.  Quote fewer special
  35.    chars in byte stream mode.  imPress document header options
  36.    can be set from environment variable IMPRESSHEADER */
  37. /* Updated by Alan Millar July 04 1993.  v1.4. 
  38.    New makefile option USE_BYTE_STREAM instead of changing source.
  39.    Swatch output redone to eliminate ALL blank swatches (swatchMap).
  40.    Buffer copying changed to multi-byte operations (BIGTYPE).
  41.    Page margins and A4 paper settings fixed, at least for Canon CX.
  42.    */
  43.  
  44. /* -------------------------------------------------------- */ 
  45. /* Instructions:  
  46.  
  47.    - Add "imagen.dev" to DEVICE_DEVS in the makefile.  For example:
  48.     DEVICE_DEVS2=laserjet.dev imagen.dev
  49.  
  50.    - Include or exclude USE_BYTE_STREAM in makefile as appropriate
  51.      If you are compiling on Unix, re-run "tar_cat" to update the makefile
  52.       from devs.mak
  53.  
  54.    - At run time, specify the resolution on the GS command line
  55.       by using -r300 or -r150 or -r75
  56.    - At run time, specify any imPress document options in
  57.       the IMPRESSHEADER environment variable.
  58.    */
  59.  
  60. /* -------------------------------------------------------- */
  61. /* Hardware/software combinations tested:
  62.    - ImageStation IP3 8/300 with parallel byte-stream interface,
  63.        using GS 2.6.1 on Linux with GCC 2.3.3;
  64.        earlier using GS 2.5.1 on MS-Dos with Turbo C++ 1.0
  65.    - Sequenced-packet-protocol interface untested.
  66.    */
  67. /* -------------------------------------------------------- */
  68. /* Bugs/Enhancements:
  69.    - Driver does not use any Impress language features for 
  70.      drawing lines/arcs
  71.    - Driver does not use resident or downloadable fonts.
  72.    - Buffer output instead of system call for each byte?
  73.   */
  74.  
  75. /* -------------------------------------------------------- */ 
  76. #include "gdevprn.h" 
  77. /* #include <stdio.h> should not be used in drivers */
  78. #include <stdlib.h>
  79.  
  80. /* -------------------------------------------------------- */ 
  81. /* Working Constants */
  82.  
  83. /* Byte stream quoting: convert special characters to hex.
  84.    Specify by including/excluding -DUSE_BYTE_STREAM in makefile.
  85.    This should match printer's hardware interface configuration.
  86.    If printer interface is serial with sequenced-packet-protocol 
  87.      spooler software (ImageStation config# 11 = 01), then don't use it.
  88.      Imagen "ipr" spooler software should not use byte stream.
  89.    If printer interface is Centronics parallel byte stream, 
  90.      (ImageStation config# 11 = 03), then use byte stream.  */
  91.  
  92. #ifdef USE_BYTE_STREAM
  93. #  define BYTE_STREAM 1
  94. #else
  95. #  define BYTE_STREAM 0
  96. #endif
  97.  
  98. /* Byte stream quote character (ImageStation config# 15).
  99.    Only needed when using byte stream */
  100. #define QUOTE_CHAR (char) 0x02
  101. /* Byte stream end-of-file character (ImageStation config# 14). */
  102. #define EOF_CHAR   (char) 0x04 
  103. /* Other special characters to quote.  Put them here if spooler or
  104.    hardware uses flow control, etc.   If not needed, set to
  105.    a redundant value such as EOF_CHAR */
  106. #define EXTRA_QUOTE1 (char) 0x11   /* ^Q */
  107. #define EXTRA_QUOTE2 (char) 0x13   /* ^S */
  108. #define EXTRA_QUOTE3 EOF_CHAR
  109. #define EXTRA_QUOTE4 EOF_CHAR
  110.  
  111. /* -------------------------------------------------------- */ 
  112. /* imPress header default options.  
  113.    Can be overridden at run-time with IMPRESSHEADER env variable */
  114.  
  115. #define IMPRESSHEADER "jobheader onerror, prerasterization off"
  116.  
  117. /* -------------------------------------------------------- */ 
  118.  
  119. #define CANON_CX
  120.  
  121. /* Printer engine max resolution.  300 for Canon CX models such as 
  122.    ImageStation IP3.  Others (240?) unverified */ 
  123. #ifdef CANON_CX
  124. #  define MAX_DPI 300 
  125. #endif
  126. #ifndef MAX_DPI
  127. #  define MAX_DPI 300 
  128. #endif
  129.  
  130. /* Determine imPress scaling factor from GS resolution.  
  131.    Magnify can be 0, 1, or 2. 
  132.     0 = MAX_DPI, 1 = MAX_DPI / 2, 2 = MAX_DPI / 4 
  133.    Assuming MAX_DPI is 300, you can specify -r75 or -r150
  134.     or -r300 on the GS command line  */ 
  135. #define getMagnification  ( \
  136.   ( pdev->x_pixels_per_inch > (MAX_DPI >> 1) ) ? 0 : \
  137.   ( pdev->x_pixels_per_inch > (MAX_DPI >> 2) ) ? 1 : \
  138.   2 )
  139.  
  140. /* Page dimensions from gdevprn.h - specify -DA4 in makefile for A4 paper */ 
  141. #define WIDTH_10THS   DEFAULT_WIDTH_10THS
  142. #define HEIGHT_10THS  DEFAULT_HEIGHT_10THS
  143.  
  144. /* Width in inches of unprintable edge of paper.  May need fine tuning.
  145.    Canon CX engine in ImageStation IP3 8/300 will only print 8 inches
  146.    wide on any paper size.  May vary for other engines */
  147.  
  148. #ifdef CANON_CX
  149. #  define MARG_L 0.15
  150. #  define MARG_R ( (float)WIDTH_10THS / 10.0 - 8.0 - MARG_L)
  151. #endif
  152. #ifndef MARG_L
  153. #  define MARG_L 0.2
  154. #endif
  155. #ifndef MARG_R
  156. #  define MARG_R 0.2
  157. #endif
  158. #define MARG_T 0.1 
  159. #define MARG_B 0.2 
  160.  
  161.  
  162. /* Flag for displaying debug messages at run-time.  Higher
  163.     number = higher detail */
  164. #define IM_DEBUG 0
  165. #define DebugMsg(Level,P1,P2) if (Level<=IM_DEBUG) {fprintf(stderr,P1,P2 );}
  166.  
  167. /*-------------------------------------------*/ 
  168.   /* Impress bitmaps are made up of 32x32 bit swatches. 
  169.      A swatch is four bytes (32 bits) wide by 32 bytes high,
  170.      totalling 128 bytes.  */
  171. #define HorzBytesPerSw 4
  172. #define HorzBitsPerSw (HorzBytesPerSw * 8)
  173. #define VertBytesPerSw 32
  174. #define TotalBytesPerSw (HorzBytesPerSw * VertBytesPerSw)
  175.  
  176. /*-------------------------------------------*/ 
  177. /* Attempt at optimization to something faster than byte-by-byte copying.  
  178.    imPress swatches are 4 bytes wide, so type must align on a 4-byte 
  179.    boundary.  Swatch interleaving restricts the copy to 4 bytes in a row.  
  180.    Type must be numeric where value is zero when all bytes in it are zero. */
  181. #if arch_sizeof_long == 4
  182. #  define BIGTYPE unsigned long int
  183. #else
  184. #  if arch_sizeof_short == 4
  185. #    define BIGTYPE unsigned short int
  186. #  else
  187. #    if arch_sizeof_short == 2
  188. #      define BIGTYPE unsigned short
  189. #    endif
  190. #  endif
  191. #endif
  192. #ifndef BIGTYPE
  193. #define BIGTYPE byte
  194. #endif
  195.  
  196. #define BIGSIZE ( sizeof( BIGTYPE ) )
  197.  
  198. /*-------------------------------------------*/ 
  199. /*    IMAGEN imPress Command opcodes                    */ 
  200. /* from DVIIMP.C */ 
  201. #define iSP        128    /* advance one space            */ 
  202. #define    iSP1        129    /* advance one space + 1 pixel        */ 
  203. #define iMPLUS        131    /* Move one pixel forward        */ 
  204. #define    iMMINUS        132    /* Move one pixel back            */ 
  205. #define iMMOVE        133    /* Move in main advance direction    */ 
  206. #define iSMOVE        134    /* Move in secondary advance direction    */ 
  207.  
  208. #define iABS_H        135    /* Move to H position            */ 
  209. #define iREL_H        136    /* Move in H direction            */ 
  210. #define iABS_V        137    /* Move to V position            */ 
  211. #define iREL_V        138    /* Move in V direction            */ 
  212.  
  213. #define    iCRLF        197    /* move to beginning of next line    */ 
  214.  
  215. #define    iSET_HV_SYSTEM    205    /* Define new coordinate system        */ 
  216. #define    iSET_ADV_DIRS    206    /* Define advance directions        */ 
  217.  
  218. #define    iPAGE        213    /* Set H and V to 0            */ 
  219. #define iENDPAGE    219    /* print the current page        */ 
  220.  
  221. #define iBITMAP        235    /* Print a full bitmap            */ 
  222. #define iSET_MAGNIFICATION 236 
  223.                 /* magnify the page by 1, 2, 4        */ 
  224. #define iNOOP        254    /* no operation                */ 
  225. #define iEOF        255    /* end of impress document        */ 
  226.  
  227. /*-------------------------------------------*/ 
  228. /*-------------------------------------------*/ 
  229. /* The device descriptor */ 
  230.  
  231. private dev_proc_print_page(imagen_print_page); 
  232. private dev_proc_open_device(imagen_prn_open);
  233. private dev_proc_close_device(imagen_prn_close);
  234.  
  235. gx_device_procs imagen_procs =
  236.     prn_procs(imagen_prn_open, gdev_prn_output_page, imagen_prn_close);
  237.  
  238. #define ppdev ((gx_device_printer *)pdev)
  239.  
  240. /*-------------------------------------------*/ 
  241. gx_device_printer far_data gs_imagen_device = 
  242.   prn_device(/*prn_std_procs*/ imagen_procs,
  243.     "imagen", 
  244.     WIDTH_10THS, 
  245.     HEIGHT_10THS, 
  246.     MAX_DPI,                /* x_dpi */ 
  247.     MAX_DPI,                /* y_dpi */ 
  248.     MARG_L,MARG_R,MARG_T,MARG_B,        /* margins */ 
  249.     1, imagen_print_page); 
  250.  
  251. /*-------------------------------------------*/ 
  252.  
  253. /*-------------------------------------------*/ 
  254. private void 
  255. iWrite(FILE *Out, byte Val) 
  256. { /* iWrite */ 
  257.   char *hexList = "0123456789ABCDEF"; 
  258.  
  259.   /* if we are doing byte-stream, quote characters that would otherwise
  260.      match EOF and QUOTE itself, or other special chars */
  261.   /* Imagen quoting takes one character and writes out the QUOTE
  262.      character followed by the hex digits of the quoted character */
  263.   if (BYTE_STREAM && 
  264.      (   Val == QUOTE_CHAR   || Val == EOF_CHAR
  265.       || Val == EXTRA_QUOTE1 || Val == EXTRA_QUOTE2
  266.       || Val == EXTRA_QUOTE3 || Val == EXTRA_QUOTE4 ) ) { 
  267.     fputc (QUOTE_CHAR, Out); 
  268.     fputc ((char) hexList[Val / 0x10], Out); 
  269.     fputc ((char) hexList[Val % 0x10], Out); 
  270.   } else { /* quoted char */ 
  271.     /* Not doing quoting, just send it out */
  272.     fputc(Val, Out); 
  273.   } /* quoted char */ 
  274. } /* iWrite */ 
  275.  
  276. /* Write out 16bit, high byte first */ 
  277. void 
  278. iWrite2(FILE *Out, int Val) 
  279. { /* iWrite2 */ 
  280.   iWrite(Out,(byte) (Val >> 8) & 0x00FF ); 
  281.   iWrite(Out,(byte) Val        & 0x00FF ); 
  282. } /* iWrite2 */ 
  283.  
  284. /* --------------------------------------------------------- */ 
  285.  
  286. private int
  287. imagen_prn_open(gx_device *pdev)
  288. { /* imagen_prn_open */
  289.   int    code;
  290.  
  291.   char *impHeader;
  292.  
  293.   /* ----------------------------------------- */
  294.   DebugMsg(1,"%s\n","Start of imagen_prn_open");
  295.   DebugMsg(2,"BIGSIZE = %ld \n",BIGSIZE);
  296.  
  297.   code = gdev_prn_open(pdev);
  298.   if ( code < 0 ) return code;
  299.  
  300.   /* ----------------------------------------- */
  301.  
  302.   DebugMsg(2,"opening file: %s\n",ppdev->fname);
  303.   code = gdev_prn_open_printer(pdev, 1);
  304.   if ( code < 0 ) return code;
  305.  
  306.   impHeader = getenv("IMPRESSHEADER");
  307.   if (impHeader == NULL ) {
  308.     impHeader = IMPRESSHEADER ;
  309.   } /* if impHeader */
  310.  
  311.   fprintf(ppdev->file,"@document(language impress, %s)",impHeader); 
  312.   
  313.   code = gdev_prn_close_printer(pdev);
  314.   if ( code < 0 ) return code;
  315.  
  316.   /* ----------------------------------------- */
  317.   DebugMsg(1,"%s\n","End of imagen_prn_open");
  318.  
  319.   return code;
  320. } /* imagen_prn_open */
  321.  
  322. private int
  323. imagen_prn_close(gx_device *pdev)
  324. { /* imagen_prn_close */
  325.   int        code;
  326.  
  327.   /* ----------------------------------------- */
  328.   DebugMsg(1,"%s\n","Start of imagen_prn_close");
  329.  
  330.   code = gdev_prn_open_printer(pdev, 1);
  331.   if ( code < 0 ) return code;
  332.  
  333.   /* Write imPress end of document marker */
  334.   iWrite(ppdev->file,iEOF); 
  335.  
  336.   /* And byte stream end of file */
  337.   if (BYTE_STREAM) { 
  338.     /* DON'T use iWrite because actual EOF should not be quoted! */
  339.     fputc(EOF_CHAR,ppdev->file); 
  340.   } /* if byte stream */ 
  341.  
  342.   fflush(ppdev->file);
  343.   
  344.   code = gdev_prn_close_printer(pdev);
  345.   if ( code < 0 ) return code;
  346.  
  347.   code = gdev_prn_close(pdev);
  348.  
  349.   DebugMsg(1,"%s\n","End of imagen_prn_close");
  350.  
  351.   return(code);
  352. } /* imagen_prn_close */
  353.  
  354. /*-------------------------------------------*/ 
  355. /* Send the page to the printer. */ 
  356. private int 
  357. imagen_print_page(gx_device_printer *pdev, FILE *prn_stream) 
  358.   int line_size = gdev_mem_bytes_per_scan_line((gx_device *)pdev); 
  359.   /* input buffer: one line of bytes rasterized by gs */
  360.   byte *in = (byte *)gs_malloc(BIGSIZE, line_size / BIGSIZE + 1,
  361.     "imagen_print_page(in)"); 
  362.   /* output buffer: 32 lines, interleaved into imPress swatches */
  363.   byte *out; 
  364.   /* working pointer into output buffer */    
  365.   byte *swatch; 
  366.   byte *temp;
  367.   /* map of which swatches in a row are completely blank, or are non-blank */
  368.   byte *swatchMap;
  369.   /* starting line number on page of a row of swatches */
  370.   int lnum ; 
  371.   /* line number within a row of swatches */
  372.   int swatchLine; 
  373.   /* ending line number of row of swatches */
  374.   int lastLine; 
  375.   /* how many swatches can fit on a row */
  376.   int swatchCount; 
  377.   /* index into row of non-blank swatch */
  378.   int startSwatch; 
  379.   int endSwatch; 
  380.   /* Scaling factor for resolution */
  381.   int Magnify; 
  382.   /* page totals */
  383.   int totalBlankSwatches;
  384.   int totalGreySwatches;
  385.  
  386.   /* ----------------------------------------- */
  387.   /* Start of routine                          */
  388.   /* ----------------------------------------- */
  389.  
  390.   DebugMsg(1,"%s\n","Start of imagen_print_page");
  391.  
  392.   /* ----------------------------------------- */
  393.   Magnify = getMagnification ; 
  394.  
  395.   /* Impress bitmaps are made up of 32x32 bit swatches. 
  396.      A swatch is four bytes wide by 32 bytes high. 
  397.      See how many swatches will fit horizontally. */ 
  398.  
  399.   swatchCount = (line_size + HorzBytesPerSw - 1) / HorzBytesPerSw; 
  400.  
  401.   totalBlankSwatches = 0 ;
  402.   totalGreySwatches = 0 ;
  403.   DebugMsg(2,"Swatch count = %d\n",swatchCount);
  404.   DebugMsg(2,"Line size = %d\n",line_size );
  405.  
  406.   out = (byte *)gs_malloc(TotalBytesPerSw , swatchCount + 1, 
  407.             "imagen_print_page(out)"); 
  408.  
  409.   swatchMap = (byte *)gs_malloc(BIGSIZE,swatchCount / BIGSIZE + 1,
  410.     "imagen_print_page(swatchMap)" );
  411.  
  412.   if ( in == 0 || out == 0 ) 
  413.     return -1; 
  414.  
  415.   /* Initialize the page */ 
  416.   iWrite(prn_stream,iPAGE); 
  417.  
  418.   /* Tell ImPress what resolution we will be using */
  419.   iWrite(prn_stream,iSET_MAGNIFICATION); 
  420.       iWrite(prn_stream,Magnify); 
  421.  
  422.   /*------------------------------------------------------*/
  423.   /* main loop down page */ 
  424.   lnum = 0;
  425.   while (lnum <= pdev->height) { 
  426.  
  427.     /* erase swatch map.  */ 
  428.     for (swatch = swatchMap; swatch < swatchMap + swatchCount ; 
  429.         swatch += BIGSIZE ) { 
  430.       * (BIGTYPE *)swatch = (BIGTYPE) 0; 
  431.     } /* for  */ 
  432.  
  433.     /* get scan lines to fill swatches */ 
  434.     swatchLine = 0; 
  435.     lastLine = VertBytesPerSw - 1; 
  436.  
  437.     /* Check if we don't have a full-height row of swatches at end of page */
  438.     if (lnum + lastLine > pdev->height ) {
  439.       /* back up last row so it overlaps with previous.  Not a problem
  440.     on a laser printer, because the overlapping part will be identical */
  441.       lnum = pdev->height - lastLine ; 
  442.     }; /* not full height */
  443.  
  444.     DebugMsg (3,"lnum = %d \n",lnum);
  445.  
  446.     /* ------------------------------------------------------- */
  447.     /* get 32 lines and interleave into a row of swatches */ 
  448.     for (swatchLine = 0 ; swatchLine <= lastLine; swatchLine++) { 
  449.       /* blank out end of buffer for BIGSIZE overlap */
  450.       for (temp = in + line_size; temp < in + line_size + BIGSIZE;temp++){
  451.     *temp = 0;
  452.       } /* for temp */
  453.  
  454.       /* get one line */ 
  455.       gdev_prn_copy_scan_lines(pdev, lnum + swatchLine, in, line_size); 
  456.       DebugMsg(5,"Got scan line %d ", lnum + swatchLine);
  457.       DebugMsg(5,"line %d \n", swatchLine); 
  458.  
  459.       /* interleave scan line into swatch buffer */ 
  460.       /* a swatch is a 4 byte * 32 byte square.  Swatches are placed 
  461.      next to each other.  The first scan line maps into the first 
  462.      four bytes of the first swatch, then the first four of the second 
  463.      swatch, etc. 
  464.      To get this on the page: 
  465.        A1  A1  A1  A1  B1  B1  B1  B1  C1  C1  C1  C1 
  466.        A2  A2  A2  A2  B2  B2  B2  B2  C2  C2  C2  C2 
  467.        ... 
  468.        A32 A32 A32 A32 B32 B32 B32 B32 C32 C32 C32 C32 
  469.      You have to send it as: 
  470.        A1 A1 A1 A1 A2 ... A32 B1 B1 .. B32 C1 C1 ... C32   */ 
  471.  
  472.       /* set initial offset into swatch buffer based on which 
  473.      line in the swatch we are processing */ 
  474.       swatch = out + swatchLine * HorzBytesPerSw; 
  475.       DebugMsg(5,"offset: swatch = %d \n",(int) (swatch - out) );
  476.       temp = in; 
  477.       while ( temp < in + line_size ) { 
  478.     /* copy multi-byte to swatch buffer */ 
  479.     * (BIGTYPE *)swatch = * (BIGTYPE *)temp; 
  480.     if ( * (BIGTYPE *)temp ) {
  481.       /* mark map if not blank */
  482.       swatchMap[(swatch - out)/TotalBytesPerSw] = (byte) 1 ;
  483.     } /* if not zero */
  484.  
  485.     temp   += (BIGSIZE > HorzBytesPerSw) ? HorzBytesPerSw : BIGSIZE ; 
  486.     swatch += (BIGSIZE > HorzBytesPerSw) ? HorzBytesPerSw : BIGSIZE ; 
  487.  
  488.     /* if we copied four bytes, skip to next swatch */ 
  489.     if ( ((temp - in) % HorzBytesPerSw ) == 0 ) { 
  490.       swatch += (TotalBytesPerSw - HorzBytesPerSw) ; 
  491.     } /* if need to skip */
  492.       } /* while < line_size */ 
  493.  
  494.     } /* for swatchLine */ 
  495.  
  496.     /* ------------------------------------------------- */
  497.     /* we now have full swatches. */ 
  498.     /* Send to printer */ 
  499.  
  500.     /* go through swatch map to find non-blank swatches.
  501.        Skip over completely blank swatches */ 
  502.     startSwatch = 0;
  503.     while (startSwatch < swatchCount ) {
  504.       if (swatchMap[startSwatch] == 0 ) {
  505.     /* skip blank swatch */
  506.     DebugMsg(6,"Skip blank %d \n",startSwatch);
  507.     totalBlankSwatches++;
  508.     startSwatch++;
  509.       } else { /* if swatch == 0 */
  510.     /* we hit a non-blank swatch. */
  511.     totalGreySwatches++;
  512.  
  513.     /* See how many there are in a row */
  514.     endSwatch = startSwatch;
  515.     while ( (endSwatch < swatchCount) && swatchMap[endSwatch] ) {
  516.       endSwatch++;
  517.       totalGreySwatches++;
  518.     } /* while */
  519.     /* endSwatch is one past last non-blank swatch */
  520.     DebugMsg(6,"Grey swatches %d ",startSwatch);
  521.     DebugMsg(6,"until %d \n",endSwatch);
  522.  
  523.     /* vertical position: scan line, shifted for magnification */ 
  524.     iWrite(prn_stream, iABS_V); 
  525.       iWrite2(prn_stream, lnum << Magnify); 
  526.  
  527.     /* horizontal position = swatch number * 32 bits/swatch */ 
  528.     iWrite(prn_stream,iABS_H); 
  529.        iWrite2(prn_stream, startSwatch * HorzBitsPerSw << Magnify ); 
  530.     iWrite(prn_stream,iBITMAP);  /* start bitmap */ 
  531.       iWrite(prn_stream,0x07);     /* bit OR with page */ 
  532.       iWrite(prn_stream,(endSwatch - startSwatch)); /* horizontal 
  533.         number of swatches */ 
  534.       iWrite(prn_stream, 1) ; /* vertical number of swatches */ 
  535.     /* write out swatch buffer */ 
  536.     for (swatch = out + startSwatch * TotalBytesPerSw;
  537.         swatch < out + endSwatch * TotalBytesPerSw; swatch++) { 
  538.       iWrite(prn_stream,*swatch); 
  539.     } /* for swatch */ 
  540.  
  541.     /* swatches have been printed, see if there are still
  542.        more in this row */
  543.     startSwatch = endSwatch;
  544.       } /* if swatch == 0 */
  545.  
  546.     } /* while startSwatch */
  547.    
  548.     /* Whole row of swatches is done.  Go on to next row of swatches */
  549.     lnum += lastLine + 1; 
  550.  
  551.   } /* while lnum */ 
  552.  
  553.   /* Eject the page */ 
  554.   iWrite(prn_stream,iENDPAGE); 
  555.  
  556.   fflush(prn_stream); 
  557.  
  558.   gs_free((char *)swatchMap, BIGSIZE, swatchCount / BIGSIZE + 1,
  559.     "imagen_print_page(swatchMap)" );
  560.   gs_free((char *)out, TotalBytesPerSw, swatchCount+1, "imagen_print_page(out)"); 
  561.   gs_free((char *)in, BIGSIZE, line_size / BIGSIZE + 1, "imagen_print_page(in)"); 
  562.   /* ----------------------------------------- */
  563.  
  564.   DebugMsg(1,"Debug: Grey: %d \n",totalGreySwatches);
  565.   DebugMsg(1,"Debug: Blank: %d \n",totalBlankSwatches );
  566.   DebugMsg(1,"%s\n","End of imagen_print_page");
  567.  
  568.   /* ----------------------------------------- */
  569.   return 0; 
  570.  
  571. } /* imagen_print_page */ 
  572.